TARGET   = bintree
CPPFLAGS = -g3 -Wall -Wextra
CC       = g++

all: $(TARGET)


.PHONY:

clean:
	$(RM) $(TARGET) a.out core *.o
